home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / utilsys / jstegbin.rdm < prev    next >
Text File  |  1996-05-20  |  1KB  |  22 lines

  1. Short:    Hides secret data inside a JPEG file
  2. Author:   IJG, Derek Upham, Guenther Roehrich
  3. Uploader: Guenther@studbox.uni-stuttgart.de (Guenther Roehrich)
  4. Type:     util/crypt
  5.  
  6. This version of the Independent JPEG Group's JPEG Software (release 4)
  7. has been modifed for 1-bit steganography in JFIF output files.
  8.  
  9. Steganography is the science of hiding data in otherwise plain text or
  10. images.  Here, we are hiding the data inside images stored in the JFIF
  11. format of the JPEG standard.  It was believed that this type of
  12. steganography was impossible, or at least infeasible, since the JPEG
  13. standard uses lossy encoding to compress its data.  Any hidden data
  14. would be overwhelmed by the noise.  The trick used by this
  15. steganographic implementation is to recognize that JPEG encoding is
  16. split into lossy and non-lossy stages.  The lossy stages use a
  17. discrete cosine transform and a quantization step to compress the
  18. image data; the non-lossy stage then uses Huffmann coding to further
  19. compress the image data.  As such, we can insert the steganographic
  20. data into the image data between those two steps and not risk
  21. corruption.
  22.